﻿@charset "utf-8";
/* 城市首页 CSS - 重构版 2025-12-19 */
/* 与 TAG页、列表页、详情页 保持统一的现代UI风格 */

/* ================== Reset & Base ================== */
body {
    background: #f5f7fa;
    font-family: "Microsoft YaHei", "Heiti SC", Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #3266A0;
    text-decoration: none;
}

a:visited {
    color: #555;
}

img {
    border: none;
}

ul,
li,
p,
h1,
h2,
h3,
figure {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* ================== Small Nav (Top Bar) ================== */
#smallnav {
    width: 100%;
    height: 40px;
    height: 35px;
    background: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
}

#smallnav #cont {
    width: 1200px;
    height: 35px;
    line-height: 35px;
    color: #666;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

#smallnav #cont .l {
    color: #666;
    font-size: 13px;
}



#smallnav #cont .r {
    /* float removed - using flex */
    font-size: 13px;
}

#smallnav #cont a {
    color: #666;
    transition: color 0.2s;
}

#smallnav #cont a:hover {
    color: #ff5a00;
    text-decoration: none;
    opacity: 1;
}

/* ================== Top Header ================== */
#top {
    width: 100%;
    height: 110px;
    background: #fff;
    border-bottom: 1px solid #eee;
    margin: 0;
}

#top .top-inner {
    width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    position: relative;
}

#top .logo {
    margin: 20px 0 0 0;
    width: 235px;
    padding-right: 20px;
    border-right: 1px solid #eef2f7;
}

#top .logo h1 {
    margin: 0;
    padding: 0;
    line-height: 1;
}

#top .logo a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
}

#top .logo img {
    margin-right: 0;
    margin-bottom: 5px;
}

#top .logo span {
    font-size: 12px;
    color: #053158;
    font-weight: normal;
    line-height: 1.4;
    display: inline-block;
    width: auto;
}

#top .cityName {
    position: absolute;
    z-index: 1000;
    top: 25px;
    left: 300px;
    color: #333;
    padding-top: 3px;
    line-height: 24px;
    font-weight: 600;
    font-size: 22px;
    text-align: center;
}

#top .cityName a {
    color: #3266A0;
    font-size: 12px;
    text-decoration: none;
    font-weight: 400;
    border: 1px solid #3266A0;
    background: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    transition: all 0.2s;
}

#top .cityName a:hover {
    background: #3266A0;
    color: #fff;
}

#top .searchbar {
    margin: 35px 0 0 0;
}

#top .searchbar form {
    display: flex;
    align-items: center;
}

#top .searchbar .kw {
    border: 2px solid #3266A0;
    height: 32px;
    padding: 0 10px;
    width: 300px;
    outline: none;
    font-size: 14px;
    border-right: none;
    color: #333;
    border-radius: 4px 0 0 4px;
}

#top .searchbar .submit {
    background: #3266A0;
    color: #fff;
    border: none;
    height: 36px;
    width: 80px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 0 4px 4px 0;
    font-weight: normal;
}

#top .searchbar .submit:hover {
    background: #2857a0;
}

/* ================== Search Input Wrapper ================== */
/* 2025-12-27 恢复自GitHub: 搜索栏容器，支持搜索历史和建议功能 */
.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

/* ================== Search History Dropdown ================== */
/* 2025-12-27 恢复自GitHub: 搜索历史下拉框 */
.search-history {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    right: 120px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: 280px;
    overflow-y: auto;
}

.history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    font-size: 13px;
    color: #666;
    font-weight: 600;
}

.clear-history {
    color: #3266A0;
    font-size: 12px;
    font-weight: normal;
    cursor: pointer;
}

.clear-history:hover {
    color: #2850a0;
    text-decoration: underline;
}

.history-list {
    padding: 0;
    margin: 0;
}

.history-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s, color 0.2s;
}

.history-item:last-child {
    border-bottom: none;
}

.history-item i {
    font-size: 14px;
    color: #999;
    margin-right: 8px;
}

.history-item .keyword {
    flex: 1;
    font-size: 14px;
    color: #555;
}

.history-item:hover,
.history-item.active {
    background: #f0f7ff;
    color: #3266A0;
}

.history-item:hover .keyword,
.history-item.active .keyword {
    color: #3266A0;
}

.history-item:hover i,
.history-item.active i {
    color: #3266A0;
}

/* ================== Search Suggestions Dropdown ================== */
/* 2025-12-27 恢复自GitHub: 搜索建议下拉框 */
.search-suggestions {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    right: 120px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: 320px;
    overflow-y: auto;
}

.suggestions-list {
    padding: 0;
    margin: 0;
}

.suggestion-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s, color 0.2s;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item i {
    font-size: 14px;
    color: #999;
    margin-right: 8px;
    flex-shrink: 0;
}

.suggestion-item .keyword {
    flex: 1;
    font-size: 14px;
    color: #555;
}

.suggestion-item .keyword strong {
    color: #3266A0;
    font-weight: 600;
}

.suggestion-item .count {
    font-size: 12px;
    color: #999;
    margin-left: 10px;
    flex-shrink: 0;
}

.suggestion-item:hover,
.suggestion-item.active {
    background: #f0f7ff;
}

.suggestion-item:hover .keyword,
.suggestion-item.active .keyword {
    color: #3266A0;
}

.suggestion-item:hover i,
.suggestion-item.active i {
    color: #3266A0;
}

.suggestion-item:hover .count,
.suggestion-item.active .count {
    color: #3266A0;
}

/* ================== Main Navigation ================== */
#nav {
    width: 100%;
}

.nav-top-wrap {
    width: 100%;
    background: linear-gradient(to right, #3266A0, #2557a0);
    box-shadow: 0 4px 12px rgba(50, 102, 160, 0.15);
}

.nav-bottom-wrap {
    width: 100%;
    background: #eef2f7;
    border-bottom: 1px solid #e1e4e8;
    min-height: 40px;
}

.nav-inner {
    width: 1200px;
    margin: 0 auto;
    position: relative;
}

#cont_top {
    height: 54px;
}

#cont_top ul {
    margin: 0;
    display: flex;
    align-items: center;
    height: 54px;
}

#cont_top ul li {
    display: block;
    height: 100%;
}

#cont_top ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 24px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

/* Hover & Active Effect */
#cont_top ul li a:hover,
#cont_top ul li.select a {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* Bottom Highlight Line Removed */
/*
#cont_top ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 4px;
    background: #FF5A00;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#cont_top ul li a:hover::after,
#cont_top ul li.select a::after {
    width: 100%;
    left: 0;
}
*/

/* 区域链接 */
#cont_bottom,
.botton1 {
    height: 40px;
    line-height: 40px;
    background: transparent;
    margin: 0;
    padding: 0 15px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

#cont_bottom a,
.botton1 a {
    margin: 0 12px;
    color: #555;
    font-size: 13px;
    transition: all 0.2s;
    position: relative;
}

#cont_bottom a:hover,
.botton1 a:hover {
    color: #FF5A00;
    text-decoration: none;
    transform: translateY(-1px);
}

/* ================== Main Content Area ================== */
#content {
    width: 1200px;
    margin: 0px auto;
    animation: fadeInUp 0.5s ease-out;
    display: flow-root;
    /* 建立 BFC，防止内部浮动元素溢出，解耦外部 clear: both */
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================== 广告列表 ================== */
.alist {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 15px;
}

.alist li {
    height: 107px;
    width: 590px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.alist li:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.alist li img {
    height: 90px;
    width: 590px;
    object-fit: cover;
}

/* ================== Flexbox Layout Helpers ================== */
.row-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.row-flex * {
    box-sizing: border-box;
}

.row-flex form {
    margin: 0;
    padding: 0;
}

.col-left {
    width: 899px;
}

.col-right {
    width: 290px;
}

.mt10 {
    margin-top: 10px;
}

.mb10 {
    margin-bottom: 10px;
}

.mr10 {
    margin-right: 10px;
}

.of {
    overflow: hidden;
}

/* ================== Box1 - 带标题框 ================== */
.box1 {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid #eef2f7;
    overflow: hidden;
}

.box1 .t {
    height: 44px;
    line-height: 44px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-bottom: 1px solid #eef2f7;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.box1 .t .l {
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.box1 .t .l h2 {
    font-size: 16px;
    margin: 0;
    padding: 0;
    display: inline;
    font-weight: 600;
}



.box1 .t .r a {
    color: #999;
    font-size: 13px;
    transition: color 0.2s;
}

.box1 .t .r a:hover {
    color: #FF5A00;
}

.box1 .cont {
    padding: 0 15px;
}

/* ================== 企业选址表单 ================== */
/* 2025-12-27 恢复自GitHub: 首页企业选址表单样式 */
.weituo {
    color: #333;
}

.weituo select {
    width: 100%;
    height: 32px;
    line-height: 32px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    padding: 0 8px;
    background: #fff;
    transition: border-color 0.2s;
}

.weituo select:focus {
    border-color: #3266A0;
    outline: none;
}

.input1 {
    height: 30px;
    font-size: 14px;
    line-height: 30px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0 8px;
    transition: border-color 0.2s;
}

.input1:focus {
    border-color: #3266A0;
    outline: none;
}

.weituo button {
    width: 100%;
    height: 42px;
    background: linear-gradient(135deg, #FF6B00 0%, #FF4500 100%);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(255, 69, 0, 0.2);
}

.weituo button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 69, 0, 0.3);
}

/* ================== 需求信息列表 ================== */
/* 2025-12-27 恢复自GitHub: 首页求租求购信息列表样式 */
.xuqiu {
    background: #fff;
}

.xuqiu .row {
    display: flex;
    height: 38px;
    line-height: 38px;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s;
}

.xuqiu .row:hover {
    background: #fafafa;
}

.xuqiu .row:nth-child(even) {
    background: #fafcfd;
}

.xuqiu .row:nth-child(even):hover {
    background: #f5f9fc;
}

.xuqiu .l {
    text-align: center;
}

.xuqiu .title {
    flex: 1;
    word-break: keep-all;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding: 0 10px;
}

.xuqiu .title a:hover {
    color: #3266A0;
}

/* ================== 推荐园区 ================== */
/* 2025-12-27 恢复自GitHub: 首页推荐园区列表样式 */
.tjyq {
    padding: 0;
}

.tjyq li {
    padding: 0 12px;
    height: 37px;
    line-height: 37px;
    border-bottom: 1px solid #f5f5f5;
    word-break: keep-all;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    transition: background 0.2s;
}

.tjyq li:hover {
    background: #f9fafb;
}

.tjyq li:last-child {
    border-bottom: none;
}

.tjyq li a:hover {
    color: #3266A0;
}

/* ================== 企业选址表单内联样式 ================== */
/* 2025-12-27 恢复自GitHub: 企业选址表单的详细布局样式 */
.weituo .form-cont {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 15px 10px;
}

.weituo .form-row {
    display: flex;
    align-items: center;
}

.weituo .lbl {
    width: 42px;
    text-align: right;
    color: #666;
    font-size: 14px;
}

.weituo .flex1 {
    flex: 1;
}

.weituo input.flex1 {
    flex: 0 0 150px;
    width: 150px;
}

.weituo .radio-group {
    flex: 1;
    font-size: 12px;
    display: flex;
    align-items: center;
    color: #666;
    gap: 0;
    justify-content: space-between;
}

.weituo .radio-group label {
    margin-right: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.weituo .radio-group input {
    margin-right: 3px;
    vertical-align: middle;
}

.weituo .area-group {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 5px;
}

.weituo .input-small {
    width: 55px;
    text-align: center;
}

.weituo .btn-box {
    text-align: center;
    margin-top: 5px;
}

.weituo .btn-submit {
    width: 100%;
}

/* ================== 需求列表内联样式 ================== */
/* 2025-12-27 恢复自GitHub: 求租求购信息列表的详细样式 */
.xuqiu .list-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.xuqiu .item {
    display: flex;
    height: 39px;
    line-height: 39px;
    border-bottom: 1px dashed #eee;
    transition: background 0.2s;
}

.xuqiu .item:last-child {
    border-bottom: none;
}

.xuqiu .item:hover {
    background: #f9fafb;
}

.xuqiu .item .col-city {
    width: 65px;
    text-align: center;
    color: #666;
}

.xuqiu .item .col-type {
    width: 78px;
    text-align: center;
    color: #FF5A00;
}

.xuqiu .item .col-area {
    width: 80px;
    text-align: center;
    color: #999;
    font-family: Arial, sans-serif;
    margin-right: 10px;
}

/* ================== 用户操作列和宽度定义 ================== */
/* 2025-12-27 恢复自GitHub: 首页布局宽度定义 */
.w209 {
    width: 209px;
}

.w578 {
    width: 578px;
}

.w193 {
    width: 193px;
}

.mt20 {
    margin-top: 20px;
}

.user-actions-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.user-actions-col .action-row {
    display: flex;
    gap: 0;
    flex-direction: column;
}

.user-actions-col .action-row>div {
    flex: 1;
    margin-bottom: 10px;
}

.btn-login,
.btn-reg {
    display: block;
    width: 100%;
    padding: 10px;
    text-align: center;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-login {
    background: linear-gradient(135deg, #3266A0 0%, #2557a0 100%);
    color: #fff;
}

.btn-login:hover {
    background: linear-gradient(135deg, #2557a0 0%, #1e4a8c 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(50, 102, 160, 0.3);
}

.btn-reg {
    background: linear-gradient(135deg, #FF6B00 0%, #FF4500 100%);
    color: #fff;
}

.btn-reg:hover {
    background: linear-gradient(135deg, #FF5500 0%, #E03E00 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 69, 0, 0.3);
}







/* ================== Box2 - 信息列表框 ================== */
.box2 {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid #eef2f7;
    padding: 0;
    overflow: hidden;
}

.box2 .t {
    height: 44px;
    line-height: 44px;
    border-bottom: 2px solid #3266A0;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}

.box2 .t .l {
    font-size: 17px;
    color: #333;
    font-weight: 600;
}

.box2 .t .l h2 {
    font-size: 17px;
    margin: 0;
    padding: 0;
    display: inline;
    font-weight: 600;
}

.box2 .t .l a {
    color: #3266A0;
}

.box2 .t .m {
    display: flex;
    align-items: center;
}

.box2 .t .m ul li {
    color: #999;
    width: 70px;
    text-align: center;
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
    border-radius: 4px;
}

.box2 .t .m .current {
    color: #333;
    background: #f5f5f5;
}

.box2 .t .r a {
    color: #999;
    font-size: 13px;
}

.box2 .t .r a:hover {
    color: #FF5A00;
}

.box2 .infoCont {
    padding: 15px 15px 5px 15px;
}

.box2 .infoCont .cont {
    display: none;
}

/* ================== 信息列表1 - 带图 ================== */
.infolist1 {
    padding: 0;
}

.infolist1 .cont1 {
    height: auto;
    display: grid;
    grid-template-columns: repeat(4, 200px);
    justify-content: space-between;
    gap: 15px;
    padding-bottom: 15px;
}

.infolist1 .cont1 li {
    width: 200px;
    height: 220px;
    line-height: 16px;
    margin: 0;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #f0f0f0;
}

.infolist1 .cont1 li:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.infolist1 .cont1 li .ti {
    position: relative;
    overflow: hidden;
}

.infolist1 .cont1 li .ti div {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, rgba(255, 90, 0, 0.9) 0%, rgba(255, 69, 0, 0.9) 100%);
    position: absolute;
    z-index: 1000;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.infolist1 .cont1 li .ti div::after {
    content: "推荐";
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
}

.infolist1 .cont1 li img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
    background-color: #f0f0f0;
    /* Lazy load placeholder */
}

.infolist1 .cont1 li:hover img {
    transform: scale(1.05);
}

.infolist1 .cont1 li .tt {
    line-height: 22px;
    padding: 10px;
    height: 65px;
    overflow: hidden;
}

.infolist1 .cont1 li .tt a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: #333;
    font-size: 14px;
}

.infolist1 .cont1 li .tt a:hover {
    color: #3266A0;
}

/* 分割线 */
.infolist1 .fengGe {
    margin: 15px 0;
    height: 1px;
    background: linear-gradient(to right, #f0f0f0, #e0e0e0, #f0f0f0);
}

/* 文字列表 */
.infolist1 .cont2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.infolist1 .cont2 li {
    /* clear: both; removed */
    height: 38px;
    line-height: 38px;
    width: 48%;
    padding-left: 15px;
    position: relative;
    border-bottom: 1px dashed #f5f5f5;
    transition: background 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.infolist1 .cont2 li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #3266A0;
}

.infolist1 .cont2 li:hover {
    background: #fafafa;
}

.infolist1 .cont2 li .l {
    /* float: left; */
    flex: 1;
    /* Replace width with flex grow */
    word-break: keep-all;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.infolist1 .cont2 li .l a:hover {
    color: #3266A0;
}

.infolist1 span {
    color: #FFF;
    /* background: #FF5A00; */
    padding: 1px 4px;
    border-radius: 2px;
    font-size: 12px;
}

.infolist1 .cont2 li .r {
    /* float: right; */
    color: #FF5A00;
    font-weight: 500;
    width: 25%;
    text-align: right;
    padding-right: 5px;
}



/* ================== 信息列表2 - 小图列表 ================== */
.infolist2 {
    padding: 10px 0;
}

.infolist2 div {
    padding: 2px 0;
    border-bottom: 1px solid #f5f5f5;
    display: block;
    text-align: left;
}

.infolist2 div a {
    display: block;
    overflow: hidden;
    border-radius: 4px;
    text-decoration: none;
    position: relative; /* 为绝对定位的角标提供锚点 */
}

/* 推荐 SVG 角标样式 */
.recommend-badge {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 40px;
    height: 40px;
    pointer-events: none; /* 防止遮挡点击 */
    background-image: url('data:image/svg+xml;utf8,<svg t="1767536617694" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4101" width="32" height="32"><path d="M172.757333 409.642667l42.24-42.24 31.68 31.68-42.24 42.24zM218.581333 454.122667l42.24-42.218667 31.68 31.68-42.24 42.24zM264.256 501.973333l42.24-42.261333 33.194667 33.173333-42.24 42.24z" fill="%23ef0909" p-id="4102"></path><path d="M339.2 0L0 345.6V1024L1024 0H339.2z m-36.266667 179.2l14.933334-14.933333 19.2 19.2 57.6-57.6-19.2-19.2 14.933333-14.933334 19.2 19.2 53.333333-53.333333 14.933334 14.933333-53.333334 53.333334 14.933334 14.933333-14.933333 14.933333-14.933333-14.933333-57.6 57.6 10.666667 10.666667-14.933334 14.933333-12.8-10.666667-55.466666 55.466667-14.933334-14.933333L320 198.4l-17.066667-19.2z m-130.133333 128l44.8 6.4-6.4 23.466667c-12.8-4.266667-27.733333-6.4-42.666667-8.533334l4.266667-21.333333zM256 625.066667c-6.4 6.4-12.8 14.933333-21.333333 21.333333-6.4-4.266667-12.8-10.666667-19.2-14.933333 6.4-6.4 12.8-10.666667 17.066666-14.933334 4.266667-4.266667 4.266667-10.666667 0-14.933333l-55.466666-55.466667c-6.4 10.666667-12.8 21.333333-17.066667 32l-19.2-14.933333c6.4-10.666667 12.8-21.333333 19.2-34.133333l-49.066667-49.066667L85.333333 503.466667l-14.933333-14.933334 25.6-25.6-38.4-38.4 14.933333-14.933333L110.933333 448l23.466667-23.466667 14.933333 14.933334-23.466666 23.466666L170.666667 507.733333c6.4-10.666667 12.8-21.333333 17.066666-29.866666 6.4 6.4 12.8 10.666667 17.066667 14.933333l-19.2 32 61.866667 61.866667c17.066667 14.933333 19.2 27.733333 8.533333 38.4z m70.4-61.866667l-14.933333 14.933333-132.266667-132.266666c2.133333 8.533333 2.133333 19.2 4.266667 27.733333H160c-4.266667-38.4-12.8-78.933333-29.866667-123.733333L149.333333 341.333333c6.4 17.066667 10.666667 32 14.933334 49.066667l102.4-102.4 14.933333 14.933333-51.2 51.2 32 32 49.066667-49.066666 14.933334 14.933334-49.066667 44.8 32 32 49.066667-49.066667 14.933334 14.933334-49.066666 49.066666 32 32 55.466666-55.466666 12.8 12.8-113.066666 113.066666 14.933333 17.066667z m155.733333-162.133333L401.066667 320c2.133333 21.333333 2.133333 40.533333 0 59.733333-8.533333-2.133333-17.066667-2.133333-23.466667-4.266666 4.266667-38.4 0-76.8-8.533333-117.333334L320 307.2l-14.933333-14.933333L362.666667 234.666667c-2.133333-4.266667-2.133333-8.533333-4.266667-14.933334l17.066667-17.066666c2.133333 4.266667 4.266667 8.533333 4.266666 14.933333l121.6-121.6 14.933334 14.933333-128 128c4.266667 14.933333 6.4 27.733333 10.666666 42.666667l102.4 102.4-19.2 17.066667z m85.333334-85.333334l-36.266667 36.266667c-6.4-4.266667-12.8-8.533333-19.2-14.933333 12.8-10.666667 25.6-23.466667 36.266667-32 6.4-6.4 6.4-14.933333 0-21.333334L522.666667 256l-61.866667 61.866667-14.933333-14.933334 61.866666-61.866666-10.666666-10.666667 10.666666-49.066667-81.066666 81.066667-14.933334-14.933333 106.666667-106.666667 14.933333 14.933333-14.933333 66.133334 4.266667 4.266666L576 172.8l14.933333 14.933333-53.333333 53.333334 27.733333 27.733333c17.066667 14.933333 17.066667 32 2.133334 46.933333z" fill="%23ef0909" p-id="4103"></path></svg>'), url('data:image/svg+xml;utf8,<svg t="1767538995839" class="icon" viewBox="0 0 1025 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4266" width="32" height="32"><path d="M173.056 409.6l42.496-42.496 31.744 31.744-42.496 42.496-31.744-31.744z m46.08 44.544l42.496-41.984 31.744 31.744-42.496 42.496-31.744-32.256z m46.08 47.616l42.496-42.496 33.28 33.28-42.496 42.496-33.28-33.28z" fill="%23FFFFFF" p-id="4267"></path><path d="M339.456 0l-339.456 345.6V1024L1025.024 0h-685.568z m-35.84 179.2l14.848-14.848 19.456 19.456 57.856-57.856-19.456-19.456 14.848-14.848 19.456 19.456 53.248-53.248 14.848 14.848-53.248 53.248 14.848 14.848-14.848 14.848-14.848-14.848-57.856 57.856 10.752 10.752-14.848 14.848-12.8-10.752-55.296 55.296-14.848-14.848 55.296-55.296-17.408-19.456z m-46.592 445.952c-6.656 6.656-12.8 14.848-21.504 21.504-6.656-4.096-12.8-10.752-19.456-14.848 6.656-6.656 12.8-10.752 16.896-14.848s4.096-10.752 0-14.848l-55.296-55.296c-6.656 10.752-12.8 21.504-16.896 32.256l-19.456-14.848c6.656-10.752 12.8-21.504 19.456-34.304l-49.152-49.152-25.6 23.552-14.848-14.848 25.6-25.6-38.4-38.4 14.848-14.848 38.4 38.4 23.552-23.552 14.848 14.848-23.552 23.552 45.056 45.056c6.656-10.752 12.8-21.504 16.896-29.696 6.656 6.656 12.8 10.752 16.896 14.848l-19.456 32.256 61.952 61.952c17.408 13.312 19.968 26.112 9.216 36.864z m69.632-61.952l-14.848 14.848-132.096-132.096c2.048 8.704 2.048 19.456 4.096 27.648h-23.552c-4.096-38.4-12.8-78.848-29.696-123.904l19.456-8.704c6.656 16.896 10.752 32.256 14.848 49.152l30.208-30.208c-3.072-1.024-5.632-3.072-7.68-5.12-7.168-7.168-11.264-15.872-11.264-25.6-2.56-0.512-4.608-0.512-7.168-1.024l4.096-21.504 9.216 1.536c1.536-3.072 3.584-6.144 5.12-9.216 5.632-13.312 24.064-14.848 34.816-9.216 5.632 3.072 10.24 9.216 11.776 15.36s0.512 11.264-1.536 16.896l34.304-34.304 14.848 14.848-51.2 51.2 32.256 32.256 49.152-49.152 14.848 14.848-49.152 45.056 32.256 32.256 49.152-49.152 14.848 14.848-49.152 49.152 32.256 32.256 55.296-55.296 12.8 12.8-113.152 113.152 14.848 16.384z m156.16-162.304l-80.896-80.896c2.048 21.504 2.048 40.448 0 59.904-8.704-2.048-16.896-2.048-23.552-4.096 4.096-38.4 0-76.8-8.704-117.248l-49.152 49.152-14.848-14.848 57.856-57.856c-2.048-4.096-2.048-8.704-4.096-14.848l16.896-16.896c2.048 4.096 4.096 8.704 4.096 14.848l121.856-121.856 14.848 14.848-128 128c4.096 14.848 6.656 27.648 10.752 42.496l102.4 102.4-19.456 16.896z m85.504-84.992l-36.352 36.352c-6.656-4.096-12.8-8.704-19.456-14.848 12.8-10.752 25.6-23.552 36.352-32.256 6.656-6.656 6.656-14.848 0-21.504l-25.6-27.648-61.952 61.952-14.848-14.848 61.952-61.952-10.752-10.752 10.752-49.152-80.896 80.896-14.848-14.848 106.496-106.496 14.848 14.848-14.848 66.048 4.096 4.096 53.248-53.248 14.848 14.848L538.112 240.64l27.648 27.648c16.896 15.36 16.896 32.768 2.56 47.616z" fill="%23FFFFFF" p-id="4268"></path><path d="M57.856 367.616h228.352V670.72h-228.352z" fill="%23FFFFFF" p-id="4269"></path><path d="M115.2 280.576h228.352V583.68h-228.352z" fill="%23FFFFFF" p-id="4270"></path><path d="M251.904 163.328h195.584v165.888h-195.584z" fill="%23FFFFFF" p-id="4271"></path><path d="M306.176 307.2h135.168v234.496h-135.168zM343.04 52.224h203.264v151.04h-203.264z" fill="%23FFFFFF" p-id="4272"></path><path d="M412.672 166.4h141.312V409.6h-141.312z" fill="%23FFFFFF" p-id="4273"></path><path d="M525.824 111.616h66.048v217.6h-66.048z" fill="%23FFFFFF" p-id="4274"></path></svg>');
     background-repeat: no-repeat;
     background-size: contain;
     /* 重置 .infolist1 span 的污染样式 */
     color: transparent;
     background-color: transparent;
     padding: 0;
     border-radius: 0;
     font-size: 0;
 }



.infolist2 div:hover {
    background: transparent;
}

.infolist2 div:last-child {
    border-bottom: none;
}

.infolist2 div img {
    width: 255px;
    height: 165px;
    object-fit: cover;
    margin: 0 auto 8px;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
    display: block;
    background-color: #f0f0f0;
    transition: transform 0.3s;
    /* Lazy load placeholder */
}

.infolist2 div a:hover img {
    transform: scale(1.05);
}

.infolist2 div a span {
    line-height: 22px;
    font-weight: 400;
    font-size: 14px;
    color: #555;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 44px;
    max-width: 100%;
    margin: 0;
}

.infolist2 div a:hover span {
    color: #3266A0;
}



.infolist2 ul {
    margin-top: 10px;
}

.infolist2 ul li {
    line-height: 36px;
    border-bottom: 1px dashed #f5f5f5;
    word-break: keep-all;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding-left: 12px;
    position: relative;
}

.infolist2 ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #3266A0;
}

.infolist2 ul li:last-child {
    border-bottom: none;
}

.infolist2 ul li a:hover {
    color: #3266A0;
}

#boder_none {
    border-bottom: none !important;
}

/* ================== 宽度类 ================== */
.w209 {
    width: 245px;
}

.w578 {
    width: 680px;
}

.w193 {
    width: 235px;
}

.w756 {
    width: 900px;
}

.w233 {
    width: 290px;
}

/* ================== 底部标签区域1 ================== */
/* ================== 底部标签区域1 (Refactored) ================== */
.footerData1 {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid #eef2f7;
    padding: 15px 20px;
    margin-top: 20px;
}



.footerData1 dl {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    position: relative;
}

.footerData1 dt {
    order: 1;
    padding: 10px 20px;
    cursor: pointer;
    background: #f5f5f5;
    border-radius: 4px 4px 0 0;
    margin-right: 5px;
    transition: all 0.2s;
    position: relative;
    z-index: 0;
}

.footerData1 dt:hover {
    background: #e8e8e8;
}

.footerData1 dt.active {
    background: #3266A0;
    z-index: 2;
}

.footerData1 dt h3 {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin: 0;
}

.footerData1 dt.active h3 {
    color: #fff;
}

.footerData1 dd {
    order: 2;
    width: 100%;
    display: none;
    margin: 0;
    padding-top: 15px;
    border-top: 2px solid #3266A0;
    margin-top: -2px;
    /* Pull up to overlap with tabs */
    z-index: 1;
    min-height: 120px;
}

.footerData1 dd.active {
    display: block;
}

.footerData1 dd a {
    display: inline-block;
    padding: 6px 12px;
    margin: 4px;
    background: #f8f9fa;
    border-radius: 4px;
    color: #666;
    font-size: 13px;
    transition: all 0.2s;
    text-decoration: none;
}

.footerData1 dd a:hover {
    background: #3266A0;
    color: #fff;
    text-decoration: none;
}

/* ================== 底部标签区域2 ================== */
.footerData2 {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid #eef2f7;
    padding: 15px 20px;
    overflow: hidden;
}

.FD_t2 {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.FD_t2 li,
.FD_t2 a {
    padding: 4px 10px;
    cursor: pointer;
    margin: 3px;
    background: #f5f5f5;
    border-radius: 4px;
    color: #666;
    font-size: 13px;
    transition: all 0.2s;
}

.FD_t2 li:hover,
.FD_t2 a:hover {
    background: #3266A0;
    color: #fff;
}

.FD_C2 {
    display: flex;
}

.FD_C2 li {
    display: none;
    width: 100%;
}

.FD_C2 li.fd_show2 {
    display: block;
}

.FD_C2 li a {
    display: inline-block;
    padding: 5px 10px;
    margin: 3px;
    background: #f8f9fa;
    border-radius: 4px;
    color: #666;
    font-size: 13px;
    transition: all 0.2s;
}

.FD_C2 li a:hover {
    background: #FF5A00;
    color: #fff;
}

/* ================== 友情链接 ================== */
.links {
    width: 100%;
    box-sizing: border-box;
    margin: 20px 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid #eef2f7;
    padding: 15px 20px;
}

.links .t {
    color: #333;
    border-bottom: 2px solid #3266A0;
    height: 40px;
    line-height: 40px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.links .t .linksL {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    padding: 0;
    color: #333;
}

.links .t .linksR {
    margin-top: 0;
}

.links .friendlinks {
    padding: 5px 0;
    display: flex;
    flex-wrap: wrap;
}

.links .friendlinks a {
    font-size: 13px;
    line-height: 28px;
    padding: 0 12px;
    color: #888;
    transition: color 0.2s;
}

.links .friendlinks a:hover {
    color: #3266A0;
}








.text-red {
    color: #cc0000 !important;
}

/* ================== 杂项工具类 ================== */
.img-responsive {
    width: 100%;
    height: auto;
    display: block;
}

.pb10 {
    padding-bottom: 10px;
}

.copyright-link {
    color: #666;
    transition: color 0.2s;
}

.copyright-link:hover {
    color: #3266A0;
}

/* ================== 响应式适配 ================== */
@media (max-width: 767px) {

    #content,
    #nav #cont,
    #smallnav #cont,
    #top,
    .links,
    .footer #cont {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }

    .row-flex {
        flex-direction: column;
    }

    .col-left,
    .col-right,
    .w209,
    .w578,
    .w193,
    .w756,
    .w233 {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .box1,
    .box2 {
        margin-bottom: 15px;
    }

    .alist li {
        width: 100%;
    }

    .alist li img {
        width: 100%;
        height: auto;
    }

    .infolist1 .cont1 {
        justify-content: space-between;
    }

    .infolist1 .cont1 li {
        width: 48%;
    }

    .infolist1 .cont2 li,
    .infolist1 .cont3 li {
        width: 100%;
    }
}

@media (max-width: 767px) {

    /* Layout */
    #content,
    #nav .nav-inner,
    #smallnav #cont,
    #top .top-inner,
    .links,
    .footer #cont {
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }

    /* Top Section */
    #top {
        height: auto;
        padding-bottom: 10px;
    }

    #top .top-inner {
        flex-direction: column;
        height: auto;
    }

    #top .logo {
        width: 100%;
        border-right: none;
        margin: 10px 0;
        text-align: center;
        display: flex;
        justify-content: center;
    }

    #top .cityName {
        position: static;
        text-align: center;
        width: 100%;
        margin-bottom: 10px;
    }

    /* Searchbar Mobile Fix - 2025-12-27 Restored */
    #top .searchbar {
        display: block;
        /* Removed display: none */
        margin: 0;
        width: 100%;
    }

    #top .searchbar form {
        width: 100%;
        display: flex;
    }

    #top .searchbar .kw {
        width: 100%;
        flex: 1;
    }

    #top .searchbar .submit {
        width: 80px;
        flex-shrink: 0;
    }

    /* List Items Mobile Fix */
    .infolist1 .cont1 {
        grid-template-columns: 1fr;
        /* Single column */
    }

    .infolist1 .cont1 li {
        width: 100%;
        margin: 0 auto;
    }

    #nav #cont_top ul {
        flex-wrap: wrap;
        height: auto;
    }

    #nav #cont_top ul li a {
        padding: 0 8px;
        font-size: 13px;
        line-height: 40px;
    }

    /* Hide some elements on mobile if needed */
    .user-actions-col {
        display: none;
    }
}

/* ================== 内联样式提取补充 ================== */
.user-actions-col {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.user-actions-col .action-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.user-actions-col .action-row>div {
    min-width: 0;
    /* Prevent grid blowout */
    margin: 0;
}

.btn-login,
.btn-reg {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    height: 45px;
    padding: 0;
    line-height: normal;
    text-align: center;
    border-radius: 6px;
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.btn-login:visited,
.btn-reg:visited {
    color: #fff !important;
}

.btn-login:hover,
.btn-reg:hover {
    color: #fff;
    transform: translateY(-2px);
}

.btn-login {
    background: linear-gradient(135deg, #3266A0 0%, #2557a0 100%);
    box-shadow: 0 4px 12px rgba(50, 102, 160, 0.3);
}

.btn-login:hover {
    box-shadow: 0 6px 16px rgba(50, 102, 160, 0.4);
}

.btn-reg {
    background: linear-gradient(135deg, #FF6B00 0%, #FF4500 100%);
    box-shadow: 0 4px 12px rgba(255, 69, 0, 0.3);
}

.btn-reg:hover {
    box-shadow: 0 6px 16px rgba(255, 69, 0, 0.4);
}

.d-block {
    display: block !important;
}

.ad-banner {
    border: 1px solid #CCC;
}

.alist {
    list-style: none;
    margin: 0;
    padding: 0;
}

.alist img {
    height: auto !important;
    display: block;
    max-width: 100%;
}

#top .top-inner {
    width: 1200px;
    margin: 0 auto;
    height: 100%;
    position: relative;
}


/* ================== From global.css ================== */
.f12 {
    font-size: 12px;
}

.f14 {
    font-size: 14px;
}

.f16 {
    font-size: 16px;
}

.f18 {
    font-size: 18px;
}

#f12 {
    font-size: 12px;
}

.colorH {
    color: #999
}

.colorH2 {
    color: #666
}

.colorRed {
    color: #C00
}

.colorBlue {
    color: #32659F
}

.colorgreen {
    color: green;
}

.b {
    font-weight: bold;
}

.bg_red {
    background: red;
}

.bg_blue {
    background: blue;
}

.bg_green {
    background: green;
}

.bg_black {
    background: black;
}

.bg_white {
    background: white;
}

.c_blue {
    color: #3266A0;
}

.c_black {
    color: #333;
}

.c_red {
    color: #C00
}

.c_o {
    color: #FF6600
}

#mr0 {
    margin-right: 0;
}

.mr0 {
    margin-right: 0;
}

.mt10 {
    margin-top: 10px;
}

.mt20 {
    margin-top: 20px;
}



.mb10 {
    margin-bottom: 10px;
}

.ml10 {
    margin-left: 10px;
}

.h100 {
    height: 100%
}

#boder_none {
    border: none;
}

.boder_none {
    border: none;
}

.boder_b1 {
    border-bottom: 1px solid #E0DBDB;
}

/* .clear 类已删除 - 2025-12-26 - 布局使用 flexbox，不再需要浮动清除 */

.of {
    overflow: hidden;
}

.d-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
}


.tStyle {
    height: 28px;
    border-bottom: 1px solid #D5DDE6
}

.tStyle .div1 {
    font-size: 18px;
    width: 100px;
    border-bottom: 1px solid #95C1ED;
    color: #43719F;
    height: 28px;
    line-height: 28px;
    font-weight: bold;
}

/* 未使用的工具类已删除 - 2025-12-27 */

/* ================== Footer ================== */
.footer {
    /* clear: both 已删除 - 2025-12-26 */
    width: 100%;
    background: #fff;
    border-top: 1px solid #e7e7e7;
    padding: 40px 0;
    margin-top: 0px;
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

.footer .cont {
    width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer .c1 {
    margin-bottom: 15px;
}

.footer .c1 .sep {
    color: #dcdcdc;
}

.footer .c1 a {
    margin: 0 8px;
    color: #555;
    text-decoration: none;
}

.footer .c1 a:hover {
    color: #3266A0;
    text-decoration: none;
}

.footer .c2 {
    color: #999;
    font-size: 13px;
    font-family: Arial, sans-serif;
}

.footer .c2 a {
    color: #999;
    text-decoration: none;
}

.footer .c2 a:hover {
    color: #3266A0;
    text-decoration: none;
}

/* 底部举报弹窗样式 */
.report-box {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}

.report-box .report-icon {
    cursor: pointer;
    vertical-align: middle;
}

.report-box .report-popup {
    display: none;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background: #fff;
    padding: 5px;
    border: 1px solid #eee;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.report-box:hover .report-popup {
    display: block;
}

/* 搜索功能CSS已删除 - 2025-12-27 */





/* Footer Data */
.footerData1 {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid #eef2f7;
    padding: 15px 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.footerData1 dl {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    position: relative;
}

.footerData1 dt {
    order: 1;
    padding: 10px 20px;
    cursor: pointer;
    background: #f5f5f5;
    border-radius: 4px 4px 0 0;
    margin-right: 5px;
    transition: all 0.2s;
    position: relative;
    z-index: 0;
}

.footerData1 dt.active {
    background: #3266A0;
    z-index: 2;
}

.footerData1 dt h3 {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin: 0;
}

.footerData1 dt.active h3 {
    color: #fff;
}

.footerData1 dd {
    order: 2;
    width: 100%;
    display: none;
    margin: 0;
    padding-top: 15px;
    border-top: 2px solid #3266A0;
    margin-top: -2px;
    z-index: 1;
    min-height: 120px;
}

.footerData1 dd.active {
    display: block;
}

.footerData1 dd a {
    display: inline-block;
    padding: 6px 12px;
    margin: 4px;
    background: #f8f9fa;
    border-radius: 4px;
    color: #666;
    font-size: 13px;
    transition: all 0.2s;
}

.footerData1 dd a:hover {
    background: #3266A0;
    color: #fff;
}

/* 返回顶部按钮CSS已删除 - 2025-12-27 */

/* Helpers */
.tags-row .qy {
    display: inline-block;
    font-size: 12px;
    font-weight: normal;
    padding: 2px 8px;
    background: #eef2f7;
    color: #3266A0;
    border-radius: 12px;
    margin-right: 5px;
    cursor: default;
}



/* ========================================
   Mobile Responsive Styles
   ======================================== */

@media screen and (max-width: 768px) {

    /* Layout */
    .content,
    .smallnav .cont,
    .top .cont {
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }

    /* Top Navigation */
    .top {
        height: auto;
        padding: 10px 0;
    }

    .top .cont {
        flex-direction: column;
        align-items: stretch;
    }

    .top .cont .l {
        justify-content: center;
        margin-bottom: 10px;
    }

    .top .cont .l img {
        height: 40px;
        width: auto;
    }

    .top .cont .l .nav {
        display: none;
    }

    /* Search Form */
    .top .cont .m form {
        width: 100%;
    }

    .top .cont .m .kw {
        width: 100%;
        height: 40px;
        font-size: 16px;
    }

    .top .cont .m .submit {
        height: 44px;
        width: 80px;
    }



    /* Touch-friendly enhancements */
    @media (hover: none) and (pointer: coarse) {

        .hot-tag,
        .history-item {
            min-height: 44px;
            display: flex;
            align-items: center;
        }

        .list-item:hover {
            background: transparent;
        }
    }
}



/* Enforce 1200px fixed width for Desktop >= 768px */
@media screen and (min-width: 768px) {
    body {
        min-width: 1200px;
        overflow-x: auto;
    }

    #content,
    #nav .nav-inner,
    #top .top-inner,
    #smallnav #cont,
    .infoTZ,
    .footer #cont,
    .footer .cont {
        width: 1200px !important;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }
}

/* 2025-12-30 Fix alignment for right column */
.row-stretch {
    align-items: stretch;
}

.col-flex-stretch {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.box-flex-stretch {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.flex-grow {
    flex: 1;
}